home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 25 / Cream of the Crop 25.iso / utility / ffe101.zip / GRAPH.SWG / 0018_QFX.pas < prev    next >
Pascal/Delphi Source File  |  1996-09-04  |  2KB  |  31 lines

  1. --------I-QFX-------------------------------
  2.  
  3. QFX files are yet another graphic file format used to store received fax
  4. images.  The  .QFX file format is  proprietary  to Smith Micro Software,
  5. Inc.  and is used by the Quick Link II fax software. The QFX file header
  6. is  exactly 1536 bytes long. The fax pages themselves are stored in byte
  7. aligned,  bit  reversed  T4 format terminated  with  6  EOL's. See CCITT
  8. Recommendation T.4 for full documentation on this coding scheme.
  9.  
  10. OFFSET              Count TYPE   Description
  11. 0000h                   8 char   ID='QLIIFAX',0
  12. 0008h                   1 word   Number of pages in the QFX file
  13. 000Ah                   1 word   Number of scan lines on last page
  14. 000Ch                   1 dword  Number of scan lines for all pages
  15. 0010h                   1 word   Horizontal scaling
  16.                                  1 - High res (200x200),
  17.                                  2 - Normal res (200x100)
  18. 0012h                   1 word   Vertical scaling (always = 1).
  19. 0014h                  12 byte   reserved
  20. 0020h                 375 dword  Offsets of the single pages in the document.
  21.                                  Page 1 always starts at offset 1536. The last
  22.                                  non-zero dword points to the end of the last
  23.                                  page, the first zero dword marks the end of
  24.                                  the pages.
  25. 0600h                   ? byte   Start of fax page images
  26.  
  27. EXTENSION:QFX
  28. OCCURENCES:PC
  29. PROGRAMS:Quick Link II
  30.  
  31.